JIDLString

Declaration

public class JIDLString implements java.io.Serializable

 

java.lang.Object

|

+--com.idl.javaidl.JIDLString

All Implemented Interfaces:

java.io.Serializable

Description

The JIDLString class wraps a String as a mutable object usable by the Java-IDL Export bridge.

Member Summary

Constructors

JIDLString(JIDLString value)

Construct a wrapper object.

JIDLString(java.lang.String value)

Construct a wrapper object.

Methods

void

setValue(JIDLString value)

Change the value of the wrapper object

void

setValue(java.lang.String value)

Change the value of the wrapper object

java.lang.String

stringValue()

Return the value of the wrapped primitive

java.lang.String

toString()

Inherited Member Summary

Methods inherited from class Object

equals(Object), getClass(), hashCode(), notify(), notifyAll(), wait(long, int), wait(long, int), wait(long, int)

Constructors

JIDLString(JIDLString)

public JIDLString(com.idl.javaidl.JIDLString value)

Construct a wrapper object.

Parameters:

value - value to wrap for use in the export bridge

JIDLString(String)

public JIDLString(java.lang.String value)

Construct a wrapper object.

Parameters:

value - value to wrap for use in the export bridge

Methods

setValue(JIDLString)

public void setValue(com.idl.javaidl.JIDLString value)

Change the value of the wrapper object

Parameters:

value - primitive value to wrap for use in the export bridge

setValue(String)

public void setValue(java.lang.String value)

Change the value of the wrapper object

Parameters:

value - primitive value to wrap for use in the export bridge

stringValue()

public java.lang.String stringValue()

Return the value of the wrapped primitive

Returns:

value that is wrapped by this object

toString()

public java.lang.String toString()

Overrides:

toString in class Object